home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / nan_news / toolkit / year.prg < prev   
Text File  |  1991-08-15  |  3KB  |  96 lines

  1. /*
  2.  * File......: YEAR.PRG
  3.  * Author....: Jo W. French dba Practical Computing
  4.  * CIS_ID....: 74731,1751
  5.  * Date......: $Date:   15 Aug 1991 23:04:56  $
  6.  * Revision..: $Revision:   1.2  $
  7.  * Log file..: $Logfile:   E:/nanfor/src/year.prv  $
  8.  * 
  9.  * The functions contained herein are the original work of Jo W. French
  10.  * and are placed in the public domain.
  11.  *
  12.  * Modification history:
  13.  * ---------------------
  14.  *
  15.  * $Log:   E:/nanfor/src/year.prv  $
  16.  * 
  17.  *    Rev 1.2   15 Aug 1991 23:04:56   GLENN
  18.  * Forest Belt proofread/edited/cleaned up doc
  19.  * 
  20.  *    Rev 1.1   14 Jun 1991 19:53:20   GLENN
  21.  * Minor edit to file header
  22.  * 
  23.  *    Rev 1.0   01 Apr 1991 01:02:36   GLENN
  24.  * Nanforum Toolkit
  25.  *
  26.  */
  27.  
  28. /*  $DOC$
  29.  *  $FUNCNAME$
  30.  *     FT_YEAR()
  31.  *  $CATEGORY$
  32.  *     Date/Time
  33.  *  $ONELINER$
  34.  *     Return calendar or fiscal year data
  35.  *  $SYNTAX$
  36.  *     FT_YEAR( [ <dGivenDate> ] ) -> aDateInfo
  37.  *  $ARGUMENTS$
  38.  *     <dGivenDate> is any valid date in any date format.  Defaults
  39.  *     to current system date if not supplied.
  40.  *  $RETURNS$
  41.  *     A three element array containing the following data:
  42.  *
  43.  *        aDateInfo[1] - The year as a character string "YYYY"
  44.  *        aDateInfo[2] - The beginning date of the year
  45.  *        aDateInfo[3] - The ending date of the year
  46.  *  $DESCRIPTION$
  47.  *     FT_YEAR() returns an array containing data about the year
  48.  *     containing the given date.
  49.  *
  50.  *     Normally the return data will be based on a year beginning
  51.  *     on January 1st.
  52.  *
  53.  *     The beginning of year date can be changed by using FT_DATECNFG(),
  54.  *     which will affect all subsequent calls to FT_YEAR() until another
  55.  *     call to FT_DATECNFG().
  56.  *
  57.  *     The beginning of year date may be reset to January 1 by calling
  58.  *     FT_DATECNFG() with no parameters.
  59.  *  $EXAMPLES$
  60.  *     // Get info about year containing 9/15/90, assuming default
  61.  *     // beginning of year is January 1st.
  62.  *     aDateInfo := FT_YEAR( Ctod("09/15/90") )
  63.  *     ? aDateInfo[1]   //  1990
  64.  *     ? aDateInfo[2]   //  01/01/90     beginning of year
  65.  *     ? aDateInfo[3]   //  12/31/90     end of year
  66.  *
  67.  *     // get info about current year (1991).
  68.  *     aDateInfo := FT_YEAR()
  69.  *     ? aDateInfo[1]   //  1991
  70.  *     ? aDateInfo[2]   //  01/01/91   beginning of year
  71.  *     ? aDateInfo[3]   //  12/31/91   end of year
  72.  *  $SEEALSO$
  73.  *     FT_DATECNFG() FT_WEEK() FT_MONTH() FT_QTR()
  74.  *  $END$
  75. */
  76.  
  77. FUNCTION FT_YEAR(dGivenDate)
  78.  
  79.   LOCAL aRetVal[3], aTemp, cFY_Start
  80.   LOCAL cDateFormat := SET(_SET_DATEFORMAT)
  81.  
  82.   aTemp := FT_DATECNFG()
  83.   cFY_Start := aTemp[1]
  84.   SET(_SET_DATEFORMAT, "yyyy.mm.dd")
  85.   dGivenDate := IF(dGivenDate == NIL .OR. VALTYPE(dGivenDate) != 'D',;
  86.                     DATE(), dGivenDate)
  87.   aRetVal[2] := CTOD(STR( YEAR(dGivenDate) - IF(MONTH(dGivenDate) < ;
  88.                     MONTH(CTOD(cFY_Start)), 1, 0), 4) + ;
  89.                     SUBSTR(cFY_Start, 5, 6) )
  90.   aRetval[3] := FT_MADD(aRetVal[2], 12) - 1
  91.   aRetVal[1] := STR(YEAR(aRetVal[3]),4)      // End of Year
  92.   SET(_SET_DATEFORMAT, cDateFormat)
  93.  
  94. RETURN aRetVal
  95.  
  96.